From a8dccef50746bf5ae3425b5be71e2093aab41205 Mon Sep 17 00:00:00 2001 From: Benjamin Otte Date: Fri, 29 Mar 2019 09:43:16 +0100 Subject: [PATCH] build: The private reftest library needs to be shared Otherwise the module and gtk-reftest will each have their own copy and that'll mean all symbols - and inhibiting the shutdown - will exist twice. Not good. --- testsuite/reftests/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testsuite/reftests/meson.build b/testsuite/reftests/meson.build index a9c3608b45..e1a24c5163 100644 --- a/testsuite/reftests/meson.build +++ b/testsuite/reftests/meson.build @@ -1,5 +1,5 @@ # FIXME: $(no_undefined) ? -libgtkreftestprivate = static_library('gtkreftestprivate', +libgtkreftestprivate = shared_library('gtkreftestprivate', 'reftest-compare.c', 'reftest-module.c', 'reftest-snapshot.c', dependencies : libgtk_dep) -- 2.30.2